From: Anton Gladky Date: Mon, 21 Aug 2023 22:27:20 +0000 (+0100) Subject: Fix FTBFS with new netcdf X-Git-Tag: archive/raspbian/9.1.0+really9.1.0+dfsg2-8+rpi1^2^2~2 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=087cc77b461a1c63ccbc556f310e390ed9208447;p=vtk9.git Fix FTBFS with new netcdf Bug-Debian: https://bugs.debian.org/1012703 Last-Update: 2022-06-19 Gbp-Pq: Name 110_vtk9_netcdf.patch --- diff --git a/ThirdParty/exodusII/vtkexodusII/src/ex_utils.c b/ThirdParty/exodusII/vtkexodusII/src/ex_utils.c index befc66f2..4d2443e5 100644 --- a/ThirdParty/exodusII/vtkexodusII/src/ex_utils.c +++ b/ThirdParty/exodusII/vtkexodusII/src/ex_utils.c @@ -1770,7 +1770,7 @@ void ex__compress_variable(int exoid, int varid, int type) */ /* const int NC_SZIP_EC = 4; */ /* Selects entropy coding method for szip. */ - const int NC_SZIP_NN = 32; /* Selects nearest neighbor coding method for szip. */ + // const int NC_SZIP_NN = 32; /* Selects nearest neighbor coding method for szip. */ /* Even and between 4 and 32; typical values are 8, 10, 16, 32 */ const int SZIP_PIXELS_PER_BLOCK = file->compression_level == 0 ? 32 : file->compression_level;